
/* General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: linear-gradient(135deg, #101820, #303841);
  color: #fff;
  overflow-x: hidden;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
}

.highlight {
  color: #00ffff;
}

.nav-links ul {
  display: flex;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  position: relative;
  transition: color 0.3s;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background: #00ffff;
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.menu-icon {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 100px 20px 60px;
  background: linear-gradient(to bottom right, #0d7377, #14ffec);
  color: #fff;
  border-radius: 0 0 100px 100px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  animation: fadeDown 1s ease;
}

.hero p {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* Contact Section */
.contact-section {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 60px;
  padding: 80px 60px;
  flex-wrap: wrap;
}

.contact-info {
  max-width: 350px;
}

.contact-info h3 {
  font-size: 1.8rem;
  color: #14ffec;
  margin-bottom: 15px;
}

.info-item {
  margin: 15px 0;
  font-size: 1rem;
}

.info-item i {
  color: #14ffec;
  margin-right: 10px;
}

.contact-form {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 12px;
  width: 400px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 0 20px rgba(20, 255, 236, 0.2);
}

.contact-form input,
.contact-form textarea {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  outline: none;
  color: #fff;
  padding: 12px;
  border-radius: 8px;
  resize: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.btn {
  background: linear-gradient(90deg, #00adb5, #14ffec);
  color: #000;
  border: none;
  padding: 14px;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.3s;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(20, 255, 236, 0.4);
}

/* Footer */
.footer {
  background: #0a0a0a;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 60px 30px;
  text-align: left;
}

.footer-col h2 {
  color: #14ffec;
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.footer-col h3 {
  color: #14ffec;
  margin-bottom: 15px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: #14ffec;
}

.bottom-bar {
  text-align: center;
  background: #050505;
  padding: 20px;
  font-size: 0.9rem;
  color: #aaa;
}

/* Animations */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s ease-out;
}

[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .navbar {
    padding: 20px 30px;
  }

  .menu-icon {
    display: block;
  }

  .nav-links ul {
    display: none;
  }

  .contact-section {
    padding: 40px 20px;
    flex-direction: column;
    align-items: center;
  }

  .contact-form {
    width: 100%;
    max-width: 400px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }
}
